Carlos Garnacho [Tue, 3 Mar 2015 21:17:58 +0000 (22:17 +0100)]
window: Add comment documenting the target widget checks during window drag
Was suggested during review of
https://bugzilla.gnome.org/show_bug.cgi?id=745562#c2
Claude Paroz [Thu, 5 Mar 2015 07:49:25 +0000 (08:49 +0100)]
Updated French translation
Matthias Clasen [Thu, 5 Mar 2015 02:56:02 +0000 (21:56 -0500)]
HighContrast: Make sure selections are visible in infobars
Pointed out in https://bugzilla.gnome.org/show_bug.cgi?id=745622
Matthias Clasen [Thu, 5 Mar 2015 02:55:11 +0000 (21:55 -0500)]
Adwaita: Make sure selections are visible in infobars
Pointed out in https://bugzilla.gnome.org/show_bug.cgi?id=745622
Carlos Garnacho [Tue, 3 Mar 2015 21:17:58 +0000 (22:17 +0100)]
widget: Improve hack to ignore drags from widgets using motion events
Postpone until the last moment whether the target widget still
potentially uses updates from this sequence, or window dragging
actually applies because all gestures on the target went to denied
state.
This fixes window dragging on empty space in a headerbar that is
contained in a paned (as in e.g. gedit).
https://bugzilla.gnome.org/show_bug.cgi?id=745562
Matthias Clasen [Thu, 5 Mar 2015 01:35:09 +0000 (20:35 -0500)]
Ensure print-related types are registered
These types are not covered by g_test_register_all_types,
and having the types registered when a print dialog is used
helps in cases where GTK+ is dlopened.
https://bugzilla.gnome.org/show_bug.cgi?id=745065
Georges Basile Stavracas Neto [Wed, 4 Mar 2015 20:12:40 +0000 (17:12 -0300)]
places sidebar: compare bookmarks by index
GtkPlacesSidebar applies a sorting function on
the tree model that does not consider the case
of bookmarks, which are sorted by their indexes.
By adding the bookmarks corner case and comparing
then by their indexes, GtkPlacesSidebar can sort
the bookmarks properly in the order they're saved.
https://bugzilla.gnome.org/show_bug.cgi?id=744589
Matthias Clasen [Wed, 4 Mar 2015 11:30:13 +0000 (06:30 -0500)]
Check for existence of sincos
It apparently doesn't exist everywhere.
https://bugzilla.gnome.org/show_bug.cgi?id=745578
Matthias Clasen [Tue, 3 Mar 2015 23:02:09 +0000 (18:02 -0500)]
file chooser: Really stop typeahead search popups
GtkTreeView is a bad widget and constantly resets the search-column
behind our back. We need to re-unset it every time a model is set :-(
Fran Dieguez [Tue, 3 Mar 2015 22:44:15 +0000 (23:44 +0100)]
Updated Galician translations
Matthias Clasen [Tue, 3 Mar 2015 20:00:06 +0000 (15:00 -0500)]
make-pot: Document variables
Damn-lies will have to use one of these to override the name
of the generated file. Lets document them all, while I still
remember this.
Carlos Garnacho [Tue, 3 Mar 2015 16:43:14 +0000 (17:43 +0100)]
filechooser: Only do search_start_query() while we are in search mode
This signal can be emitted by GtkSearchEntry after search has been
cancelled, and other operation mode is set. It doesn't make sense to
populate the search model in that state anymore, so just avoid doing it.
https://bugzilla.gnome.org/show_bug.cgi?id=745479
Carlos Garnacho [Tue, 3 Mar 2015 12:36:07 +0000 (13:36 +0100)]
searchenginetracker: Keep a reference on the search engine while querying
The object might be destroyed when mid operation, causing crashes as the
query callback still expects the object pointer to be valid. Also, remove
the gdk_threads_enter/leave pairs, the callback will be executed on the
caller (UI) thread, so this is not necessary.
https://bugzilla.gnome.org/show_bug.cgi?id=745479
Carlos Garnacho [Tue, 3 Mar 2015 12:34:03 +0000 (13:34 +0100)]
filechooser: Disconnect signal handlers from search engine before destroying
The search engine might stay alive longer due to extra temporary refs, so
the signal handlers should be removed for the filechooser to ignore these
properly.
https://bugzilla.gnome.org/show_bug.cgi?id=745479
Matthias Clasen [Tue, 3 Mar 2015 12:11:41 +0000 (07:11 -0500)]
Make a pot generating command available
Translators don't want to run autogen before generating pot,
so give them a script.
Chun-wei Fan [Tue, 3 Mar 2015 10:40:32 +0000 (18:40 +0800)]
MSVC 2008 Builds: Speed Up Release Builds
Use the /MP compiler option, where the build time for release builds can
be cut down by quite a bit. This will however cause a brief warning with
debug builds due to the use of /Gm, but the code will otherwise build
normally. Unlike the Visual Studio 2010+ builds, we can't use /d2Zi+ as
Visual Studio 2008 does not support that, so we can't get a better
debugging experience for release builds here.
Chun-wei Fan [Tue, 3 Mar 2015 10:36:00 +0000 (18:36 +0800)]
Fix "MSVC Builds: Update icon-browser Projects"
The Visual Studio 2008 Project was not updated correctly, so fix that.
Stefan Sauer [Tue, 3 Mar 2015 06:49:38 +0000 (07:49 +0100)]
tooltip: remove unused variable and related g_object_set
We never use the value of has_tooltip. This is a left-over from the refactoring
of gtk_tooltip_run_requery().
Chun-wei Fan [Tue, 3 Mar 2015 06:08:51 +0000 (14:08 +0800)]
MSVC Builds: Update icon-browser Projects
There is a new source file that needs to be built, so fix the projects...
Chun-wei Fan [Tue, 3 Mar 2015 06:07:26 +0000 (14:07 +0800)]
MSVC Builds: Improve Build Speed and Debugging
Use Multiprocessor compilation which can cut down build times by quite a
bit and use the /d2Zi+ flag to have better debugging info being logged to
the .pdb for release builds.
These are only applicable for Visual Studio 2010/2012 and later.
Chun-wei Fan [Tue, 3 Mar 2015 04:14:24 +0000 (12:14 +0800)]
gtkswitch.c: Fix Build on C89 Compilers
This file now uses round(), which was not available until C99, so include
fallback-c89.c instead of math.h, which includes math.h and does a fallback
implementation of round().
Matthias Clasen [Tue, 3 Mar 2015 00:46:43 +0000 (19:46 -0500)]
3.15.10
Matthias Clasen [Tue, 3 Mar 2015 01:57:29 +0000 (20:57 -0500)]
Avoid stray output from configure
The new xgettext check was leaving a messages.po file behind.
Matthias Clasen [Tue, 3 Mar 2015 01:16:25 +0000 (20:16 -0500)]
Fix
7c4bf742e82d812ecc5b0c3280db86d2689eb093
The objects-finalize test constructs gestures with NULL as
a widget. The recent addition of weak references was not
ready for that.
Emmanuele Bassi [Tue, 3 Mar 2015 00:06:35 +0000 (00:06 +0000)]
gears: Update to slightly more modern OpenGL
Instead of using glxgears, which still uses OpenGL 2.1 and the fixed
pipeline, we use a slightly modified es2gears, OpenGL 3.2, and the
programmable pipeline.
Matthias Clasen [Mon, 2 Mar 2015 21:22:56 +0000 (16:22 -0500)]
file chooser: Avoid animated scrolling for editing
Avoid scrolling animation when scrolling to where we want
to insert the new folder, since adding the entry doesn't
do the right thing if the treeview is still scrolling.
An alternative would be to wait for the animated scrolling
to reach its target before starting the editing, but this
is easier.
https://bugzilla.gnome.org/show_bug.cgi?id=729366
Matthias Clasen [Mon, 2 Mar 2015 20:53:35 +0000 (15:53 -0500)]
file chooser: Avoid triggering assertions
cairo surfaces are boxed types, so don't try to set them
with g_value_set_object().
Matthias Clasen [Mon, 2 Mar 2015 20:38:29 +0000 (15:38 -0500)]
file chooser: Avoid warnings from the location column
Avoid criticals that would come out of this code if file is / or NULL.
Claude Paroz [Mon, 2 Mar 2015 18:32:07 +0000 (18:32 +0000)]
Updated French translation
Carlos Garnacho [Mon, 2 Mar 2015 17:19:16 +0000 (18:19 +0100)]
x11: Store last axes from device
And use these for the missing axes if the valuator mask is incomplete.
This used to work fine on tablets because the Wacom driver ensures all
valuators are sent, which is not true if using the evdev driver.
https://bugzilla.gnome.org/show_bug.cgi?id=703610
Carlos Garnacho [Mon, 2 Mar 2015 16:01:21 +0000 (17:01 +0100)]
scrolledwindow: Cancel kinetic/overshoot animation on captured scroll events
This ensures the animation is cancelled if the child widget happens to
GDK_EVENT_STOP scroll events.
https://bugzilla.gnome.org/show_bug.cgi?id=745315
Matthias Clasen [Mon, 2 Mar 2015 16:11:24 +0000 (11:11 -0500)]
Updates
Carlos Garnacho [Mon, 2 Mar 2015 14:31:11 +0000 (15:31 +0100)]
scrolledwindow: Add motion mask to the widget window
This is not specified specifically by the attached controllers, so let
the scrolledwindow set the mask, as motion events with no buttons pressed
are interesting to it.
https://bugzilla.gnome.org/show_bug.cgi?id=745344
Yosef Or Boczko [Mon, 2 Mar 2015 13:39:40 +0000 (15:39 +0200)]
Updated Hebrew translation
Carlos Garnacho [Wed, 25 Feb 2015 14:59:26 +0000 (15:59 +0100)]
wayland: Delay wl_subsurface interface creation until the window is shown
It isn't really necessary anytime before, so just make sure it's there only
when the window is visible.
https://bugzilla.gnome.org/show_bug.cgi?id=743427
Carlos Garnacho [Wed, 25 Feb 2015 14:52:49 +0000 (15:52 +0100)]
gtkwindow: Do not show subsurface windows for hidden popover widgets
This is really just necessary when we have a visible widget, otherwise
the window would temporarily linger with odd size and surface.
https://bugzilla.gnome.org/show_bug.cgi?id=743427
Carlos Garnacho [Wed, 25 Feb 2015 13:46:54 +0000 (14:46 +0100)]
wayland: Thaw the clock if we hide a GdkWindow mid-frame
When a window is hidden, its surface and all its roles are destroyed,
if this happens when we already issued a wl_surface_commit and are
awaiting for a frame callback, the clock will remain frozen for the
next time the window is shown.
To avoid this, keep track of the wl_surface_frame() calls issued,
and ensure the clock is thawed after hiding. If we happen to receive
the frame callback, it is just ignored.
https://bugzilla.gnome.org/show_bug.cgi?id=743427
Carlos Garnacho [Wed, 25 Feb 2015 19:34:12 +0000 (20:34 +0100)]
gtkwindow: Move window dragging to a standalone drag gesture
The gesture is hooked to the capture phase, so it works for buttons in
header bars and whatnot. In order to be friendly to the widget it is
capturing events from, an ugly hack is in place to avoid capturing
events when the target widget has a gesture that would consume motion
events.
Carlos Garnacho [Wed, 25 Feb 2015 19:31:09 +0000 (20:31 +0100)]
gtkmenubutton: Popup menu/popover on GtkButton:clicked
This happens on button release, which is more convenient if the gesture
can be consumed by something else (eg. window dragging), and already behaves
correctly wrt cancelled gestures, broken grabs, etc.
This also allows us to unify pointer and keyboard behavior, popping up the
menu widget in a single place.
Carlos Garnacho [Wed, 25 Feb 2015 19:30:11 +0000 (20:30 +0100)]
gesture: On cancel, remove touchpoint before checking the recognized state
Otherwise the touch being removed doesn't account in recognition.
Carlos Garnacho [Wed, 25 Feb 2015 19:29:22 +0000 (20:29 +0100)]
button: Ensure the button is "left" when a gesture is cancelled
This prevents from stale widget states if the gesture happens to be
cancelled mid-press.
Debarshi Ray [Sun, 1 Mar 2015 12:35:02 +0000 (13:35 +0100)]
eventcontroller: Chain up on constructed
https://bugzilla.gnome.org/show_bug.cgi?id=745225
Debarshi Ray [Sun, 1 Mar 2015 12:28:21 +0000 (13:28 +0100)]
eventcontroller, widget: Don't crash if destroyed before the other
There are two scenarios. A widget sub-class owns a GtkEventController
and passes itself to it, or a controller owned by something else is
passed a widget.
In the second case, if the widget is destroyed before the controller,
we will have a crash when destructing the controller because we will
be accessing invalid memory. Adding a weak reference on the widget
addresses that problem.
This leads to a crash in the first case. When the widget is getting
destroyed, it will drop the reference to its own controller. The
controller will skip touching the widget because the weak reference
would have turned it to NULL. However, when the widget sub-class chains
up to GtkWidget it will try to free all the controllers in its list.
Unfortunately, all these controllers have already been destroyed. So
we need to guard against this too.
https://bugzilla.gnome.org/show_bug.cgi?id=745225
Murray Cumming [Mon, 2 Mar 2015 09:58:23 +0000 (10:58 +0100)]
gtk_label_set_yalign(): Fix xalign/yalign typo in parameter name.
Marek Kasik [Fri, 27 Feb 2015 15:48:40 +0000 (16:48 +0100)]
printing: Set printer state correctly
Consider NULL printer state message as empty too.
Printer state IPP_PRINTER_STOPPED can be considered as paused state.
https://bugzilla.gnome.org/show_bug.cgi?id=743323
Murray Cumming [Mon, 2 Mar 2015 08:45:57 +0000 (09:45 +0100)]
gtk_misc_set_alignment(): Improve the deprecation documenation.
To link to GtkWidget.halign/valign and to mention
GtkLabel.xalign/yalign.
Ryan Lortie [Mon, 2 Mar 2015 02:35:53 +0000 (21:35 -0500)]
gdkglcontext-win32: fix variable names in GDK_NOTE
These probably weren't caught because GDK_NOTE was disabled when the
change was tested.
https://bugzilla.gnome.org/show_bug.cgi?id=745400
Ryan Lortie [Mon, 2 Mar 2015 02:35:34 +0000 (21:35 -0500)]
gdkglcontext-win32: remove unused variables
https://bugzilla.gnome.org/show_bug.cgi?id=745400
Marek Černocký [Sun, 1 Mar 2015 17:54:56 +0000 (18:54 +0100)]
Updated Czech translation
Carlos Garnacho [Sat, 28 Feb 2015 21:59:36 +0000 (22:59 +0100)]
searchenginetracker: Unify fts/non-fts query
This makes sure we use location_uri for both types of query, and the fts
query has been made more similar to the one used by nautilus.
Matthias Clasen [Sat, 28 Feb 2015 21:42:39 +0000 (16:42 -0500)]
tracker: Turn on fts
We want to match what nautilus does, and the non-fts query
ignores the location, which yields somewhat broken UI in
the file chooser.
Matthias Clasen [Sat, 28 Feb 2015 21:13:18 +0000 (16:13 -0500)]
Formatting fixes
Matthias Clasen [Sat, 28 Feb 2015 21:09:28 +0000 (16:09 -0500)]
file chooser: Don't start search too eagerly
We were trying to start search when the user types anything,
but this is annoying more often than helpful, and interferes
with the location entry. So, stick with explicitly enabled
search (via the search button or Alt-S) for now.
Dušan Kazik [Sat, 28 Feb 2015 20:21:13 +0000 (20:21 +0000)]
Updated Slovak translation
Peter Bloomfield [Sat, 28 Feb 2015 13:59:12 +0000 (08:59 -0500)]
Do not return NULL AtkStateSet
https://bugzilla.gnome.org/show_bug.cgi?id=741511
Friedel Wolff [Sat, 28 Feb 2015 17:32:23 +0000 (19:32 +0200)]
Updated translation for Afrikaans (af)
Trần Ngọc Quân [Sat, 28 Feb 2015 07:23:14 +0000 (14:23 +0700)]
Updated Vietnamese translation
Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
Matthias Clasen [Sat, 28 Feb 2015 05:15:13 +0000 (00:15 -0500)]
wayland: Add debug spew
Matthias Clasen [Sat, 28 Feb 2015 03:28:28 +0000 (22:28 -0500)]
wayland: Formatting fixes
Matthias Clasen [Fri, 27 Feb 2015 23:18:00 +0000 (23:18 +0000)]
wayland: Apply maximized and fullscreen state
We were just throwing the request away if the app asks to
fullscreen or maximize a window before it has been mapped.
This is something the GdkWindow API explicitly supports,
so make it work by saving the state until the surface exists.
This fixes things under weston. There are bugs in mutter
that keep this from working correctly with gnome-shell.
https://bugzilla.gnome.org/show_bug.cgi?id=745303
Matthias Clasen [Fri, 27 Feb 2015 23:15:37 +0000 (18:15 -0500)]
wayland: Drop some pointless lines
No need for these parameter checks, really.
Aurimas Černius [Fri, 27 Feb 2015 22:02:25 +0000 (00:02 +0200)]
Updated Lithuanian translation
Matthias Clasen [Fri, 27 Feb 2015 22:00:08 +0000 (17:00 -0500)]
Olivier Fourdan [Fri, 27 Feb 2015 12:06:29 +0000 (13:06 +0100)]
wayland: Don't use g_error() on connection lost
When the Wayland compositor vanishes, all applications connected will
receive a SIGPIPE as soon as they try to use wl_display_dispatch().
Do not use g_error() to terminate the applications when this occurs,
g_error() means an error in the application while here it's not truly
the case.
Use g_warning() and exit() instead.
Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
https://bugzilla.gnome.org/show_bug.cgi?id=745289
Balázs Úr [Fri, 27 Feb 2015 21:18:14 +0000 (21:18 +0000)]
Updated Hungarian translation
Balázs Úr [Fri, 27 Feb 2015 21:13:55 +0000 (21:13 +0000)]
Updated Hungarian translation
Emmanuele Bassi [Fri, 27 Feb 2015 21:00:16 +0000 (21:00 +0000)]
gdk: Use a better error message
Having "Assertion failed: success" on the console is not going to help
anyone.
Piotr Drąg [Fri, 27 Feb 2015 18:46:55 +0000 (19:46 +0100)]
Updated POTFILES.in and POTFILES.skip
Piotr Drąg [Fri, 27 Feb 2015 18:37:17 +0000 (19:37 +0100)]
Updated Polish translation
Yosef Or Boczko [Fri, 27 Feb 2015 14:47:30 +0000 (16:47 +0200)]
Updated Hebrew translation
Rafal Luzynski [Thu, 26 Feb 2015 01:15:18 +0000 (02:15 +0100)]
GtkListBoxRow: add g_return_if_fail to grab_focus, don't crash
Although gtk_list_box_row_grab_focus() is not a public function
it can be easily called by gtk_widget_grab_focus() with a row argument
which has been removed from the list box and has box == NULL.
https://bugzilla.gnome.org/show_bug.cgi?id=744879
Efstathios Iosifidis [Fri, 27 Feb 2015 11:20:42 +0000 (11:20 +0000)]
Updated Greek translation
Matthias Clasen [Fri, 27 Feb 2015 02:15:19 +0000 (21:15 -0500)]
file chooser dialog: Prevent uneven button heights
The height of the text buttons depends on the font height,
whereas the search button has a fixed-size icon in it...
Prevent unevent heights by putting them all in a size group.
https://bugzilla.gnome.org/show_bug.cgi?id=745263
Matthias Clasen [Fri, 27 Feb 2015 01:55:54 +0000 (20:55 -0500)]
app chooser dialog: Prevent uneven button heights
The height of the text buttons depends on the font height,
whereas the search button has a fixed-size icon in it...
Prevent unevent heights by putting them all in a size group.
Matthias Clasen [Fri, 27 Feb 2015 00:00:24 +0000 (19:00 -0500)]
Add a configure check for new enough gettext
Check that xgettext understands glade files.
Matthias Clasen [Sun, 1 Feb 2015 19:37:20 +0000 (14:37 -0500)]
Stop building extract-strings
It is no longer needed.
Matthias Clasen [Sun, 1 Feb 2015 19:34:37 +0000 (14:34 -0500)]
Stop using extract-headers
Since 0.18.3, xgettext can extract strings from ui files.
Dušan Kazik [Thu, 26 Feb 2015 11:59:18 +0000 (11:59 +0000)]
Updated Slovak translation
Efstathios Iosifidis [Thu, 26 Feb 2015 11:23:48 +0000 (11:23 +0000)]
Updated Greek translation
Baurzhan Muftakhidinov [Thu, 26 Feb 2015 07:11:37 +0000 (07:11 +0000)]
Updated Kazakh translation
Marek Kasik [Fri, 20 Feb 2015 10:11:01 +0000 (11:11 +0100)]
printing: Always get details of Avahi printers via IPP
Request details of Avahi browsed printers even when
we've got their PPDs already. Some options are not
present in PPD.
https://bugzilla.gnome.org/show_bug.cgi?id=743323
Marek Kasik [Wed, 25 Feb 2015 14:54:36 +0000 (15:54 +0100)]
printing: Get covers for each printer individually
Since we combine Avahi browsed printers and
printers of local CUPS in one backend we need to
get covers for each printer separately.
https://bugzilla.gnome.org/show_bug.cgi?id=743323
Daniel Mustieles [Wed, 25 Feb 2015 11:34:02 +0000 (12:34 +0100)]
Updated Spanish translation
Matthias Clasen [Wed, 25 Feb 2015 01:38:33 +0000 (20:38 -0500)]
3.15.9
Jonas Ådahl [Tue, 24 Feb 2015 10:10:07 +0000 (18:10 +0800)]
wayland: Don't allocate a full size SHM buffer when drawing using OpenGL
Before this patch, we'd always allocate a full size SHM buffer via
the wl_shm_pool, even though it would never be used. Instead allocate a
logical 1x1 cairo image surface.
https://bugzilla.gnome.org/show_bug.cgi?id=745076
Jonas Ådahl [Tue, 24 Feb 2015 09:20:22 +0000 (17:20 +0800)]
wayland: Scale up wl_egl_window according to window scale
In order to support window scales for EGL windows, resize the
wl_egl_window to the window dimension multiplied with the window scale,
just as with SHM window buffers.
https://bugzilla.gnome.org/show_bug.cgi?id=745076
Jonas Ådahl [Tue, 24 Feb 2015 08:11:48 +0000 (16:11 +0800)]
wayland: Properly support changing of surface scale
When the preferred surface scale changes, for example when entering a
wl_output with a higher scale than any previous entered output, recreate
the shm surface and redraw the window content with the new window scale.
Before this patch, the internal scale would be changed, but the shm
surface would not be recreated given the new scale, i.e. we'd attach a
buffer for a different scale than wl_surface.set_scale specified.
https://bugzilla.gnome.org/show_bug.cgi?id=745076
Jonas Ådahl [Tue, 24 Feb 2015 07:00:39 +0000 (15:00 +0800)]
wayland: Don't ever try to set surface buffer scale when not supported
If the compositor is too old for handling surface buffer scales, never
tyr to set change it. This will effectively always leave it to its
initial state, i.e. 1.
https://bugzilla.gnome.org/show_bug.cgi?id=745076
Benjamin Otte [Fri, 20 Feb 2015 23:03:49 +0000 (00:03 +0100)]
gdkcairo: Bail if surface is in error
Don't try to paint onto an error surface. This happens for example when
gdk_cairo_set_source_pixbuf() is called with a pixbuf that is too big
for Cairo to handle.
Spotted by Christian Boxdörfer
Benjamin Otte [Tue, 24 Feb 2015 23:35:45 +0000 (00:35 +0100)]
css: Fix _gtk_bitmask_subtract()
We were doing the wrong thing *and* writing uninitialized memory while
doing so. BAD.
Also added tests exposing these.
https://bugzilla.redhat.com/show_bug.cgi?id=
1185585
Fran Dieguez [Tue, 24 Feb 2015 21:43:36 +0000 (22:43 +0100)]
Updated Galician translations
Piotr Drąg [Tue, 24 Feb 2015 21:09:30 +0000 (22:09 +0100)]
Updated POTFILES.in
Daniel Mustieles [Tue, 24 Feb 2015 18:21:02 +0000 (19:21 +0100)]
Updated Spanish translation
Matej Urbančič [Tue, 24 Feb 2015 18:18:22 +0000 (19:18 +0100)]
Updated Slovenian translation
Matej Urbančič [Tue, 24 Feb 2015 18:04:49 +0000 (19:04 +0100)]
Updated Slovenian translation
Yosef Or Boczko [Tue, 24 Feb 2015 17:31:13 +0000 (19:31 +0200)]
Updated Hebrew properties translation
Carlos Garnacho [Tue, 24 Feb 2015 13:52:40 +0000 (14:52 +0100)]
scrolledwindow: Only start fade animation on "visible" scrollbars
If a scrollbar is not shown (because of policies, or because it isn't
necessary), it doesn't make sense to start fade animations on its window
on captured motion events.
Yosef Or Boczko [Tue, 24 Feb 2015 13:05:00 +0000 (15:05 +0200)]
Updated Hebrew translation
Matthias Clasen [Tue, 24 Feb 2015 03:25:11 +0000 (22:25 -0500)]
Fix the previous commit
The C_() macro only takes string literals.
Use g_dpgettext2() instead
Matthias Clasen [Tue, 24 Feb 2015 03:00:55 +0000 (22:00 -0500)]
Make gtk-im-context-none work
This was added a few years ago, as a way to have _no_ im context
at all. But it didn't actually work. Make it work, and streamline
the handling of none by moving it all to gtkimmodule.c.
As part of this, add context to the translated names of all
im modules we ship.